Hi,
This guide intended for those who have an old ATI graphic card which doesn't have a fglrx driver. I'm posting this after a lot of research in Ubuntu forum and googling.
I have
Evo N610c which has
Radeon Mobility 7500 graphic card. This card (along with many other ATI cards) is not supported by Hardy... (at least for now)
So, in order to get compiz running
smoothly (up until now it run really choppy and slowly):
1)Update your xorg.conf file:
Code:
sudo gedit /etc/X11/xorg.conf
It should include the following sections:
DEVICE:
Quote:
Section "Device"
Identifier "Configured Video Device"
Boardname "ATI Radeon"
Busid "PCI:1:0:0"
Driver "radeon"
Screen 0
Vendorname "ATI"
Option "MergedFB" "off"
Option "AccelMethod" "EXA"
Option "EXANoComposite" "false"
Option "FBTexPercent" "50"
Option "MigrationHeuristic" "greedy"
Option "DRI" "true"
Option "GARTSize" "256"
Option "AGPMode" "4"
Option "Colortiling" "On"
EndSection
|
SERVERLAYOUT:
Quote:
Section "ServerLayout"
Identifier "Default Layout"
screen 0 "Default Screen" 0 0
Inputdevice "Synaptics Touchpad"
Option "AIGLX" "true"
EndSection
|
EXTENSIONS:
Quote:
Section "Extensions"
Option "Composite" "Enable"
EndSection
|
and finally,
DRI:
Quote:
Section "DRI"
Mode 0666
EndSection
|
2)After you save the file, restart Ubuntu (tip: Ctrl+Alt+Backspace)
3)In the Terminal type:
Code:
glxinfo |grep direct
if direct rendering is not working you should see a message
with something like "LIBGL_DEBUG=verbose..."
DON'T WORRY!
4)The final stage is to remove xserver-xgl which apparently prevents the direct rendering:
Code:
sudo apt-get remove xserver-xgl
5)Restart, and repeat stage 3. Now it should yield:
6)Switch the visual effects on, and enjoy!
It should work smoothly as it worked in Gutsy Gibbon.
Please let me know if it helps...